home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 4 (Reseller) / Apple Ref. & Pres. Lib.v4.0.iso / 5-Fonts & Software / HyperCard 1.2.5 / Help Stacks / Help / card_137128.txt < prev    next >
Text File  |  1989-09-06  |  1KB  |  52 lines

  1. -- card: 137128 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4507
  5. -- name: 
  6.  
  7.  
  8. -- part 3 (button)
  9. -- low flags: 00
  10. -- high flags: 8003
  11. -- rect: left=49 top=172 right=208 bottom=109
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Did I?
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   put "I'm waiting to see if you click."
  23.   wait 2 secs
  24.   if the mouseClick then
  25.     put "You clicked."
  26.   else put "You didn't click."
  27. end mouseUp
  28.  
  29.  
  30.  
  31. -- part contents for background part 43
  32. ----- text -----
  33. 337,169
  34.  
  35. -- part contents for background part 2
  36. ----- text -----
  37. mouseClick
  38.  
  39. -- part contents for background part 1
  40. ----- text -----
  41. the mouseClick
  42.  
  43. tells whether the mouse was clicked since this message began.
  44.  
  45. on mouseUp
  46.   put "I'm waiting to see if you click."
  47.   wait 2 secs
  48.   if the mouseClick then
  49.     put "You clicked."
  50.   else put "You didn't click."
  51. end mouseUp
  52.